home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Programming Tools / Lightspeed Source Code / hfs.docs < prev    next >
Encoding:
Text File  |  1986-07-12  |  1.5 KB  |  41 lines  |  [TEXT/KAHL]

  1.                             HFS EXAMPLE
  2.         Modified by John Pence, MacMan, Inc., Houston Texas.
  3.                      from MacTutor, Jan,86 issue
  4.                "Programming for HFS" by Miki Schuster.
  5.                
  6.                A "must have" for the serious programmer
  7.                MACTUTORâ„¢ P.O BOX 400
  8.                PLACENTIA, CA 92670
  9.                (714) 630-3730
  10.         
  11.  
  12. To compile and run the hfs example project from MacTutor
  13. your project must contain the following:
  14.  
  15.  
  16.  
  17. hfs.c*      ( modified for lightspeed already, otherwise same as 
  18.                 in article)         
  19. MacTraps    (Lightspeed file)      
  20. stdio         (Lightspeed file)   
  21. strings     (Lightspeed file)
  22. mmstr*      (contains strntac() and strtac(), include as is or build from
  23.                 the file mmstr.c as a project)
  24. pbcall.lib*  (build this from the pbcall.asm* file or convert
  25.                 from the pbcall.rel* file , or just use the 
  26.                 pbcall.lib* file)
  27.  
  28.  
  29. * included with this file in this packit.
  30.  
  31. I had some problems with Lightspeeds relconv program.
  32. apparently it dislikes labels that contain digits, or at least that end 
  33. with digits. And don't forget the XDEFS for each function label in the 
  34. .asm file. MDS assember does not add case information to rel files.
  35. Therefore, relconv looks in a file named the same as the file being 
  36. converted (only with a .voc extension) for labels that match the labels
  37. in the .rel file. If it finds a match, it uses the label (including its
  38. case) instead of the matching label as found in the .rel file(lower case)
  39. So, thats why the file pbcall.voc is in this packit.
  40.  
  41. Enjoy- John Pence- [MACMAN]